home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 2002 #11 / Amiga Plus CD - 2002 - No. 11.iso / Tools / Development / PowerD / alpha / modules / resources / battmembitsamiga.m < prev    next >
Encoding:
Text File  |  2002-10-28  |  1.2 KB  |  40 lines

  1. /*
  2.  * Amiga specific bits in the battery-backedup ram.
  3.  *
  4.  *  Bits 0 to 31, inclusive
  5.  */
  6. /*
  7.  * AMIGA_AMNESIA
  8.  *
  9.  *    The battery-backed up memory has had a memory loss.
  10.  *    This bit is used as a flag that the user should be
  11.  *    notified that all battery-backed bit have been
  12.  *    reset and that some attention is required. Zero
  13.  *    indicates that a memory loss has occured.
  14.  */
  15. CONST BATTMEM_AMIGA_AMNESIA_ADDR=0,
  16.  BATTMEM_AMIGA_AMNESIA_LEN=1,
  17. /*
  18.  * SCSI_TIMEOUT
  19.  *
  20.  *    adjusts the timeout value for SCSI device selection.  A
  21.  *    value of 0 will produce short timeouts (128 ms) while a
  22.  *    value of 1 produces long timeouts (2 sec).  This is used
  23.  *    for Seagate drives (and some Maxtors apparently) that
  24.  *    don`t respond to selection until they are fully spun up
  25.  *    and intialised.
  26.  */
  27.  BATTMEM_SCSI_TIMEOUT_ADDR=1,
  28.  BATTMEM_SCSI_TIMEOUT_LEN=1,
  29. /*
  30.  * SCSI_LUNS
  31.  *
  32.  *    Determines if the controller attempts to access logical
  33.  *    units above 0 at any given SCSI address.  This prevents
  34.  *    problems with drives that respond to ALL LUN addresses
  35.  *    (instead of only 0 like they should).  Default value is
  36.  *    0 meaning don't support LUNs.
  37.  */
  38.  BATTMEM_SCSI_LUNS_ADDR=2,
  39.  BATTMEM_SCSI_LUNS_LEN=1
  40.